home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 May / PCWMAY06.iso / Software / Freeware / First Page 2006 3.00 / fp2006-final-3.00-setup.exe / {app} / Iscripts / Forms Misc / day-menu.izs < prev    next >
Text File  |  2005-09-28  |  3KB  |  110 lines

  1. <!NOWIZARD>
  2.  
  3. <!TITLE>Day Menu
  4. <!/TITLE>
  5.  
  6. <!DESCRIPTION>Do you need your visitors to select a day from this month? Here's an excellent way to do so - they get a pulldown menu containing the entire month and the current day is already selected as default!<!/DESCRIPTION> 
  7.  
  8. <!CATEGORY>Forms<!/CATEGORY>
  9.  
  10. <!SCRIPT>
  11. <!-- START OF SCRIPT -->
  12.  
  13.  
  14. <!-- HOW TO INSTALL DAY MENU:
  15.  
  16.    1.  Add the code into the BODY of your HTML document  -->
  17.  
  18. <!--  STEP ONE: Copy this code into the BODY of your HTML document  -->
  19.  
  20. <BODY>
  21.  
  22. <SCRIPT LANGUAGE="JavaScript">
  23.  
  24.  
  25.  
  26. <!-- Begin
  27. today = new Date();
  28. thismonth = today.getMonth()+1;
  29. thisyear = today.getYear();
  30. thisday = today.getDate();
  31. montharray=new Array(31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
  32. maxdays=montharray[thismonth-1];
  33. if (thismonth==2) {
  34. if ((thisyear/4)!=parseInt(thisyear/4)) maxdays=28;
  35. else maxdays=29;
  36. }
  37. thismonth = "" + thismonth
  38. if (thismonth.length == 1) {
  39. thismonth = "0" + thismonth;
  40. }
  41. document.write("<form>");
  42. document.write("<select name=dates size=1>");
  43. for (var theday = 1; theday <= maxdays; theday++) {
  44. var theday = "" + theday;
  45. if (theday.length == 1) {
  46. theday = "0" + theday;
  47. }
  48. document.write("<option");
  49. if (theday == thisday) document.write(" selected");
  50. document.write(">");
  51. document.write(thismonth + "-" + theday + "-" + thisyear);
  52. }
  53. document.write("</select></form>");
  54. // End -->
  55. </SCRIPT>
  56.  
  57. <!-- END OF SCRIPT -->
  58. <!/SCRIPT>
  59.  
  60. <!PREVIEW>
  61. <!-- START OF SCRIPT -->
  62.  
  63.  
  64. <!-- HOW TO INSTALL DAY MENU:
  65.  
  66.    1.  Add the code into the BODY of your HTML document  -->
  67.  
  68. <!--  STEP ONE: Copy this code into the BODY of your HTML document  -->
  69.  
  70. <BODY>
  71.  
  72. <SCRIPT LANGUAGE="JavaScript">
  73.  
  74.  
  75.  
  76. <!-- Begin
  77. today = new Date();
  78. thismonth = today.getMonth()+1;
  79. thisyear = today.getYear();
  80. thisday = today.getDate();
  81. montharray=new Array(31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
  82. maxdays=montharray[thismonth-1];
  83. if (thismonth==2) {
  84. if ((thisyear/4)!=parseInt(thisyear/4)) maxdays=28;
  85. else maxdays=29;
  86. }
  87. thismonth = "" + thismonth
  88. if (thismonth.length == 1) {
  89. thismonth = "0" + thismonth;
  90. }
  91. document.write("<form>");
  92. document.write("<select name=dates size=1>");
  93. for (var theday = 1; theday <= maxdays; theday++) {
  94. var theday = "" + theday;
  95. if (theday.length == 1) {
  96. theday = "0" + theday;
  97. }
  98. document.write("<option");
  99. if (theday == thisday) document.write(" selected");
  100. document.write(">");
  101. document.write(thismonth + "-" + theday + "-" + thisyear);
  102. }
  103. document.write("</select></form>");
  104. // End -->
  105. </SCRIPT>
  106. <!-- END OF SCRIPT -->
  107. <!/PREVIEW>
  108.  
  109. <!RELATED>NONE<!/RELATED>
  110.